home *** CD-ROM | disk | FTP | other *** search
/ Sky at Night 2007 June / SAN CD 6-2007 CD-ROM 25.iso / pc / Software / AstroGrav_Win / Java / jre1.6.0 / lib / rt.jar / javax / swing / WindowConstants.class (.txt) < prev   
Encoding:
Java Class File  |  2006-11-29  |  256 b   |  9 lines

  1. package javax.swing;
  2.  
  3. public interface WindowConstants {
  4.    int DO_NOTHING_ON_CLOSE = 0;
  5.    int HIDE_ON_CLOSE = 1;
  6.    int DISPOSE_ON_CLOSE = 2;
  7.    int EXIT_ON_CLOSE = 3;
  8. }
  9.